home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / games / zmachine.zoo / makefile < prev    next >
Makefile  |  1993-04-29  |  181b  |  12 lines

  1. CFLAGS = -D_POSIX_SOURCE -Dunix
  2.  
  3.  
  4. OBJS = code.o io.o mem.o zbios.o zmachine.o
  5.  
  6. zmachine.ttp: $(OBJS)
  7.     gcc -o zmachine.ttp $(OBJS) -lcurses -lpml -v
  8.  
  9. clean:
  10.     @rm $(OBJS)
  11.  
  12.